* mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 3 Jan 2012 19:41:14 +0000 (20:41 +0100)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Tue, 3 Jan 2012 19:41:14 +0000 (20:41 +0100)
lisp/ChangeLog
lisp/mail/smtpmail.el

index b3ce02088e11bc5be3a1a56b40584b2b6dc5bb54..b7d0468af658aba52f1510fe83f04cccab1f2d1d 100644 (file)
@@ -1,3 +1,7 @@
+2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
+
 2012-01-03  Chong Yidong  <cyd@gnu.org>
 
        * shell.el (shell-dynamic-complete-functions): Put
index bc38b10124e5c6da76f31800d7cb34b63739db9f..4946b4e5cd3f0d352e319abdbdfc12bb4cf89527 100644 (file)
@@ -103,12 +103,14 @@ don't define this value."
   "Connection type SMTP connections.
 This may be either nil (possibly upgraded to STARTTLS if
 possible), or `starttls' (refuse to send if STARTTLS isn't
-available), or `plain' (never use STARTTLS).."
+available), or `plain' (never use STARTTLS), or `ssl' (to use
+TLS/SSL)."
   :version "24.1"
   :group 'smtpmail
   :type '(choice (const :tag "Possibly upgrade to STARTTLS" nil)
                 (const :tag "Always use STARTTLS" starttls)
-                (const :tag "Never use STARTTLS" plain)))
+                (const :tag "Never use STARTTLS" plain)
+                (const :tag "Use TLS/SSL" ssl)))
 
 (defcustom smtpmail-sendto-domain nil
   "Local domain name without a host name.